home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20000217-20000824 / 000027_news@columbia.edu _Mon Feb 21 10:10:20 2000.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA29625
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 21 Feb 2000 10:10:19 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id JAA03689
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 21 Feb 2000 09:48:30 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: Is 8 data bits, even parity, 1 stop bit possible in kermit?
  11. Date: 21 Feb 2000 14:48:29 GMT
  12. Organization: Columbia University
  13. Message-ID: <88rj7t$3j7$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <zLbs4.120$YQ6.6236@news3.voicenet.com>,
  17. Christopher Mosley  <cmosley@voicenet.com> wrote:
  18. : ...
  19. : I downloaded the debian kermit 7  binary a gzip not a deb (I think), and 
  20. : it behaves much better than the version 6.? that is included in non-free
  21. : with slink (current stable). Though I have had no problems with it, I
  22. : was initially suprised that the 7.0  did not read from the system wide
  23. : initialization file.  
  24. :                                                   
  25. Install packages for Debian, Red Hat, etc, are made by Debian, Red Hat, etc.
  26. There are numerous configuration choices, among them system-wide versus
  27. personal initialization file.  Whoever makes each package decides on the
  28. configuration.  In the Debian case, it was a different person than last
  29. time.
  30.  
  31. The standard C-Kermit initialization file includes a lot of stuff that most
  32. people don't use most of the time, primarily all of the service directory
  33. macros.  Thus it is often (usually) OK to start C-Kermit without the
  34. initialization file, and it comes up a lot faster this way.  You definitely
  35. don't need most of this stuff when Kermit is to be used in remote mode, i.e.
  36. at the far end of a file transfer, rather than for making connections.
  37.  
  38. C-Kermit 7.0 makes the choice easier with its new "kerbang script" feature,
  39. which allows Kermit scripts to be run as if they were shell scripts; see:
  40.  
  41.   http://www.columbia.edu/kermit/case02.html
  42.  
  43. So a good way to install the new version might be as follows:
  44.  
  45.   /usr/local/bin/kermit
  46.   /usr/local/bin/ckermit.ini
  47.   /usr/local/bin/<any-other-commonly-used-kermit-scripts>
  48.  
  49. all with execute permission, with /usr/local/bin in the PATH.  If you want
  50. to start Kermit "bare", type "kermit".  If you want to start it with all
  51. standard macros defined, type "ckermit.ini".
  52.  
  53. - Frank